home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Demos
/
A.D. Software
/
OOFILE
/
Buildable, limited OOFILE
/
source
/
core
/
oofbool.hpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-06-12
|
258 b
|
14 lines
|
[
TEXT/CWIE
]
#ifndef H_OOFbool
#define H_OOFbool
// F A K E B O O L E A N S
// this is for all compilers lacking the new bool data type
#ifndef OOF_GCC
typedef unsigned int bool;
#ifdef _Windows
const bool false = 0;
const bool true = 1;
#endif
#endif
#endif